/* [name of file pkg. directory; Unix error string] mkdir call failed when creating file package directory */
"IO_CreateFilePackage" = "Unable to create File Package: %s (error: %s)";
/* [directory name; Unix error string] was unable to access the specified directory */
"IO_InvalidPath" = "Unable to access directory: %s (problem: %s)";
/* [document path & name; Unix error string] was unable to access the specified document */
"IO_InvalidDocument" = "Unable to access document: %s (problem: %s)";
/* [objectStore file name; type of object that wasn't found ("document object" or "stack object")] the objectStore couldn't retrieve a standard object (document in .hcmain file, or stack in .hcpages file). */
"IO_DamagedDocument" = "Damaged Document: file `%s' is missing some vital information (%s).";
/* [objectStore file name] the objectStore didn't store a standard object (document in .hcmain file, or stack in .hcpages file) with the correct constant ID number */
"IO_StrangeObjStore1" = "Unexpected Error: Incorrect internal ID number for standard object in file %s.";
/* [full pathname of file] flags passed to ObjectStore indicated creating a read-only file: no good (bad flags -- fix the program) */
"IO_CreateReadOnly" = "Unexpeced Error: Attempt made to create a Read-Only file: %s";
/* Attempt was made to create a new document, or add a new stack or a new type of resource while running in Demo (unregistered) mode. */
"IO_CantCreateInDemoMode" = "I'm sorry, but files cannot be created in Demo Mode. Please register HyperSense first.";
/* [full pathname of file; Unix error string] couldn't create the specified file */
"IO_CreateFile" = "Unable to create file %s (problem: %s)";
/* [full pathname of directory; Unix error string] couldn't create the specified directory */
"IO_CreateDir" = "Unable to create directory %s (problem: %s)";
/* [full pathname of file; Unix error string] couldn't reopen file that was just created and closed */
"IO_OpenCreatedFile" = "Unexpected Error: Unable to open newly-created file: %s (problem: %s)";
/* [full pathname of file] file is too short to contain a complete header */
"IO_NoHeader" = "Couldn't open file %s (header invalid)";
/* [full pathname of file] file does not begin with the magic number indicating an ObjectStore file */
"IO_BadMagicNumber" = "Couldn't open file %s (file is corrupted or is not an ObjectStore file)";
/* [full pathname of file; version number of file] file was created using a newer version of the ObjectStore format than the current software supports */
"IO_WrongFileVersion" = "Couldn't open file %s (file is an incompatible version: %d)";
/* [full pathname of file; uid # of user that has file open; pid of process that opened file] file's header shows that it is already open */
"IO_FileInUse" = "Can't access file %s – it is already open by user # %d, process %d.";
/* [full pathname of file] an attempt was made to enter changes in a ReadOnly file. */
"IO_StrictReadOnly" = "File is Strictly Read Only – No Changes Allowed (%s)";
/* [full pathname of file] an attempt was made to enter changes in a ReadOnly file. */
"IO_ReadOnly" = "File is Read Only – Changes may not be saved (%s)";
/* [full pathname of file; actual size of Unix file; filesize from header] the filesize recorded in the header of an ObjectStore file does not agree with the "actual" size in the Unix filesystem */
"IO_BadFileSize" = "Couldn't open file %s (file size [%d] is different than recorded [%d])";
/* [full pathname of file] an attempt was made to create text file for read/write or write. Either directory not write accessable to user or full path does not exist. */
"IO_TextCreateWrite" = "Unable to create text file %s for writing.";
/* [full pathname of file] an attempt was made to open text file for reading. File does not exist, or directory not read accessable to user. */
"IO_TextOpenRead" = "Unable to open text file %s for reading.";
/* [full pathname of file] an attempt was made to open a text file that is currently open. */
"IO_TextFileCurrentlyOpen" = "Text file %s currently open.";
/* [full pathname of file] an attempt was made to read, write or close a text file that is not currently open. */
"IO_TextFileNotOpen" = "Text file %s not open.";
/* [full pathname of file] an attempt was made to write to a text file that was opened as read only. */
/* Incorrect value found within the datalist, i.e. a text string within a number list. */
"IO_InvalidDataList" = "Invalid data within the data list.";
/* Number out of range for character value. */
"IO_InvalidCharValue" = "Number out of range for character.";
/* [name of source file; name of destination file; error status number] system() call returned non-zero status when copying a file. */
"IO_FileCopyFailed" = "Unable to copy file %s to %s. (status = %d)";
/* [full pathname of file; error status number] system() call returned non-zero status when removing a file. */
"IO_DeleteFile" = "Unable to delete file `%s'. (status = %d)";
/* Couldn't find the Help file anywhere, including in the .app directory */
"IO_NoHelp" = "Help file not found.";
/* [source doc, dest doc] Save To command was unsuccessful */
"IO_CantSaveTo" = "Unable to save %s to %s";
/* [shell command] Couldn't execute the shell command to copy the default Home document. */
"IO_CantCopyHomeDoc" = "Unable to copy default Home document from .app directory.\nCan't execute %s";
/* [shell command] Couldn't execute the shell command to create the new document */
"IO_CantCreateNewDoc" = "Error creating new document. Unable to execute %s.";
/* [full path] Error in destroying the document */
"IO_CantDestroyDoc" = "Unable to destroy document: %s";
/* [path of home doc] not allowed to destroy the home document */
"IO_DestroyHomeNotAllowed" = "Destroying your Home Document \"%s\" is not allowed!";
/* Can't save a document within another document directory structure */
"IO_CantSaveInside" = "Saving inside another HyperSense document is not allowed!";
/* [filename] A file was not open when we expected it to be */
"IO_FileNotOpen" = "File %s not open!";
/* [name or id number of object; optional further explanation] An object could not be retrieved from disk, possibly due to a typedstream or other error, which may have been logged to the console. */
"IO_ObjectNotFound" = "%s was not found, or could not be read from the file (check the Console for possible errors).\n%s";
/* [name or id number of object; optional further explanation] An object could not be stored on the disk. */
"IO_CantStoreObject" = "%s could not be stored in the file.\n%s";